public member function
<string>

std::basic_string::operator[]

      reference operator[] (size_type pos);const_reference operator[] (size_type pos) const;
Get character of string
Returns a reference to the character at position pos in the basic_string.

If pos is equal to the string length and the string object is const-qualified, the function returns a reference to a null character (charT()).
If pos is equal to the string length, the function returns a reference to the null character that follows the last character in the string (which should not be modified).

Parameters

pos
Value with the position of a character within the string.
Note: The first character in a basic_string is denoted by a value of 0 (not 1).
Member type size_type is an unsigned integral type.

Return value

The character at the specified position in the string.

If the basic_string object is const-qualified, the function returns a const_reference. Otherwise, it returns a reference.

Member types reference and const_reference are the reference types to the characters in the container; They shall be aliases of charT& and const charT& respectively.

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
// string::operator[]
#include <iostream>
#include <string>

int main ()
{
  std::string str ("Test string");
  for (int i=0; i<str.length(); ++i)
  {
    std::cout << str[i];
  }
  return 0;
}

This code prints out the content of a string character by character using the offset operator on str:
Test string


Complexity

Unspecified.

Iterator validity

Generally, no changes.
On some implementations, the non-const version may invalidate all iterators, pointers and references on the first access to string characters after the object has been constructed or modified.

Data races

The object is accessed, and in some implementations, the non-const version modifies it on the first access to string characters after the object has been constructed or modified.
The reference returned can be used to access or modify characters.

Exception safety

If pos is less than the string length, the function never throws exceptions (no-throw guarantee).
If pos is equal to the string length, the const-version never throws exceptions (no-throw guarantee).
Otherwise, it causes undefined behavior.
Note that using the reference returned to modify elements that are out of bounds (including the character at pos) also causes undefined behavior.

Complexity

Constant.

Iterator validity

No changes.

Data races

The object is accessed (neither the const nor the non-const versions modify it).
The reference returned can be used to access or modify characters. Concurrently accessing or modifying different characters is safe.

Exception safety

If pos is less or equal to the string length, the function never throws exceptions (no-throw guarantee).
Otherwise, it causes undefined behavior.
Note that using the reference returned to modify elements that are out of bounds (including the character at pos) also causes undefined behavior.

See also